home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Communication / NewsBase / Source / AcceptWindow.h next >
Text File  |  1993-01-12  |  817b  |  28 lines

  1. // AcceptView.h
  2. // By Jayson Adams, NeXT Developer Support Team
  3. // You may freely copy, distribute and reuse the code in this example.
  4. // NeXT disclaims any warranty of any kind, expressed or implied, as to its
  5. // fitness for any particular use.
  6.  
  7. // modified by Miyai, ISR    1992.7.28
  8.  
  9. #import <appkit/Window.h>
  10.  
  11. @interface AcceptWindow:Window
  12. {
  13.     id        viewRectList;
  14.     int        viewRectUnderPoint;
  15. }
  16.  
  17. /* instance methods */
  18. - initContent:(const NXRect *)contentRect style:(int)aStyle
  19.   backing:(int)bufferingType buttonMask:(int)mask defer:(BOOL)flag;
  20. - registerRect:(NXRect *)rect forCell:view controlView:cView;
  21. - unregisterRectForCell:cell;
  22.  
  23. - (BOOL)windowEntered:(NXPoint *)windowEntered fromSource:dragSource;
  24. - (BOOL)windowExited:dragSource;
  25. - (BOOL)windowDropped:(NXPoint *)mouseLocation fromSource:source;
  26.  
  27. @end
  28.